home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000161_news@columbia.edu _Wed Mar 6 10:41:39 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id KAA04805 for <kermit.misc@watsun>; Wed, 6 Mar 1996 10:41:38 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id KAA17192 for kermit.misc@watsun; Wed, 6 Mar 1996 10:41:34 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Kermit 3.14 + Kanji = troubles
  8. Date: 6 Mar 1996 15:41:12 GMT
  9. Organization: Columbia University
  10. Lines: 39
  11. Message-ID: <4hkbmo$gou@apakabar.cc.columbia.edu>
  12. References: <ZIPPY.96Mar3042810@hairball.ecst.csuchico.edu> <4hf5q8$fkj@apakabar.cc.columbia.edu> <ZIPPY.96Mar5010726@hairball.ecst.csuchico.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <ZIPPY.96Mar5010726@hairball.ecst.csuchico.edu>,
  16. The Pinhead <zippy@hairball.ecst.csuchico.edu> wrote:
  17. : In article <4hf5q8$fkj@apakabar.cc.columbia.edu>
  18. : fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  19. : : What Kermit, what version?
  20. : MSKermit 3.14
  21. : ...
  22. : The host application is definitely using shift-jis.
  23. : ...
  24. : This still didn't work.  Section 8.6 is confusing because I have little
  25. : knowledge of IBM's code pages other than what is written in Ken Lunde's
  26. : O'Reilly book.  I tried:
  27. :     set file character-set shift-jis
  28. :     set terminal bytesize 8
  29. :     set parity none
  30. :     set terminal character-set transparent
  31. : to no avail....  :(
  32.      set file character-set shift-jis           <-- (Irrelevant)
  33.      set terminal bytesize 8                    <-- Yes, you need this
  34.      set parity none                            <-- Ditto
  35.      set terminal character-set transparent     <-- Ditto
  36.  
  37. This is exactly the set of commands you need.  If it doesn't work, that
  38. most likely means that CP982 is not the active code page, or that you don't
  39. have DOS/V in Japanese mode.  Another possibility is that the host that
  40. you are connecting to is not itself in 8-bit mode.  For example, if it were
  41. a SunOS 4.x system, you would need to tell it to:
  42.  
  43.   stty pass8
  44.  
  45. before you could see 8-bit characters (the Kanji bytes of Shift-JIS have
  46. their 8th bits set to 1).  Use the equivalent command ("stty cs8" or whatever)
  47. on other versions of UNIX or other operating systems.
  48.  
  49. - Frank